home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Pillow InnerBevel preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_InnerBevel():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Bevel': 1,
- 'Ambience': 0,
- 'Elevation': 20,
- 'Width': 8,
- 'Color': (255, 255, 255),
- 'Angle': 315,
- 'Depth': 2,
- 'Smoothness': 40,
- 'Shininess': 10,
- }
-
- def Do(Environment):
- App.Do(Environment, 'InnerBevel', Preset_InnerBevel())
-